home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / vsnprintf.c < prev    next >
C/C++ Source or Header  |  1990-09-24  |  3KB  |  95 lines

  1. /* 
  2.  * vsnprintf.c --
  3.  *
  4.  *    Source code for the "vsnprintf" library procedure.
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/vsnprintf.c,v 1.1 90/09/24 14:38:29 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22. #include <errno.h>
  23.  
  24. /*
  25.  * Forward references to procedure defined in this file:
  26.  */
  27.  
  28. static void    WriteProc();
  29.  
  30.  
  31. /*
  32.  *----------------------------------------------------------------------
  33.  *
  34.  * vsnprintf --
  35.  *
  36.  *    Format and print one or more values, placing the output into
  37.  *    a string.  See the manual page for details of how the format
  38.  *    string is interpreted.  This procedure is similar to sprintf
  39.  *    except that the arguments have been prepackaged using varargs, 
  40.  *    and we've been told how much room there is in the string.
  41.  *
  42.  * Results:
  43.  *    The return value is a pointer to string, which has been
  44.  *    overwritten with formatted information.
  45.  *
  46.  * Side effects:
  47.  *    None.
  48.  *
  49.  *----------------------------------------------------------------------
  50.  */
  51.  
  52. char *
  53. vsnprintf(string, stringSize, format, args)
  54.     char *string;        /* Where to place result. */
  55.     int stringSize;        /* Number of bytes in "string". */
  56.     char *format;        /* How to format result.  See man page
  57.                  * for details. */
  58.     va_list args;        /* Variable-length list of arguments,
  59.                  * assembled using the varargs macros. */
  60. {
  61.     FILE stream;
  62.  
  63.     Stdio_Setup(&stream, 0, 1, (unsigned char *) string, stringSize,
  64.         (void (*)()) 0, WriteProc, (int (*)()) 0, (ClientData) 0);
  65.     (void) vfprintf(&stream, format, args);
  66.     putc(0, &stream);
  67.     return string;
  68. }
  69.  
  70. /*
  71.  *----------------------------------------------------------------------
  72.  *
  73.  * WriteProc --
  74.  *
  75.  *    This procedure is invoked when the "buffer" for the string
  76.  *    fills up.  Complain to the user and set an error flag.
  77.  *
  78.  * Results:
  79.  *    None.
  80.  *
  81.  * Side effects:
  82.  *    An error message is displayed, and the stream has been marked 
  83.  *    so that no other characters will be put into it.
  84.  *
  85.  *----------------------------------------------------------------------
  86.  */
  87.  
  88. static void
  89. WriteProc(stream)
  90.     register FILE *stream;
  91. {
  92.     fprintf(stderr, "vsnprintf: string overflow\n");
  93.     stream->status = ENOMEM;
  94. }
  95.